home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <html><head><title>IsArray Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03102200"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css"> p.P1{ } p.P2{ } span.T1{ font-weight:bold;} </style></head><body> <help:to-be-embedded Eid="isarray" xmlns:help="http://openoffice.org/2000/help"> <p class="Head1"><help:link Id="66618">IsArray Function [Runtime]</help:link></p> <p class="Paragraph">Returns whether a given variable is a data field in an array.</p> </help:to-be-embedded> <p class="Paragraph"><span class="T1">Syntax</span>:</p> <p class="Paragraph">IsArray (Var) <help:key-word value="IsArray" tag="kw66618_1" xmlns:help="http://openoffice.org/2000/help"/></p> <p class="Paragraph"><span class="T1">Return value</span>:</p> <p class="Paragraph">Bool</p> <p class="Paragraph"><span class="T1">Parameter</span>:</p> <p class="Paragraph">Var: Any variable to be tested whether it was declared as an array. If this is the case, the function returns <span class="T1">True</span>; otherwise <span class="T1">False</span>.</p> <p class="P2">Example:</p> <p class="PropText">Sub ExampleIsArray</p> <p class="PropText">Dim sDatf(10) as String</p> <p class="PropText">print isarray(sdatf())</p> <p class="PropText">end Sub</p> </body></html>